home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / extenpr.zip / README < prev   
Text File  |  1990-05-03  |  1KB  |  36 lines

  1.               Extended Precision Arithmetic 
  2.  
  3.      This is a package that allows a FORTRAN program to have 
  4. access to arbitrary precision floating point numbers. 
  5.  
  6.      Program CALPI is an example of how these routines can be 
  7. used to calculate pi to many decimal places.  This program uses an
  8. iterative method described in the February 1988 issue of 
  9. Scientific American.  The sequence to find pi converges extremely
  10. rapidly.  The computation times are on a generic PC using Microsoft
  11. FORTRAN 3.3. 
  12.  
  13. Iteration    Number of Correct Digits      Computation Time 
  14.  
  15.    1                    8    
  16.   
  17.    2                   41                        8 sec 
  18.  
  19.    3                  171                      1.5 min 
  20.  
  21.    4                  694                       25 min 
  22.  
  23.    5                 2792                     8.75 hours  
  24.  
  25.  
  26.      The idea in writing these routines was to make them 
  27. portable.  They should work on almost any computer with a FORTRAN
  28. 77 compiler.   
  29.  
  30.  
  31.                         Mark P. Esplin 
  32.                       Stewart Radiance Lab 
  33.                       139 The Great Rd. 
  34.                       Bedford Mass, 01730 
  35.  
  36.